* src/fns.c (Fvaluelt): More generous depth limit (20 -> 200).
authorMattias Engdegård <mattiase@acm.org>
Fri, 29 Mar 2024 14:23:56 +0000 (15:23 +0100)
committerMattias Engdegård <mattiase@acm.org>
Fri, 29 Mar 2024 14:40:15 +0000 (15:40 +0100)
This gives `value<` the same limit as `equal` which seems about right.

src/fns.c

index 8d8783713ab8453d818f73c3769a0cf2aa3b3f6e..db5e856d5bda0ca92b3d8cc378cf58a541438c8b 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -3201,7 +3201,7 @@ Buffers and processes are compared by name.
 Other types are considered unordered and the return value will be `nil'.  */)
   (Lisp_Object a, Lisp_Object b)
 {
-  int maxdepth = 20            /* FIXME: arbitrary value */
+  int maxdepth = 200;            /* FIXME: arbitrary value */
   return value_cmp (a, b, maxdepth) < 0 ? Qt : Qnil;
 }